home *** CD-ROM | disk | FTP | other *** search
/ Softdisk for Windows 38 / Softdisk for Windows 38.iso / oilpro / OILPRO.EXE / OILPRO.DXR / 00331.ls < prev    next >
Encoding:
Text File  |  1997-08-20  |  566 b   |  25 lines

  1. on exitFrame
  2.   global LIGHTCNT
  3.   set LIGHTCNT to LIGHTCNT + 1
  4.   if rollOver(48) then
  5.     set the castNum of sprite 48 to cast "QUITRETURN1"
  6.   else
  7.     set the castNum of sprite 48 to cast "QUITRETURN0"
  8.   end if
  9.   puppetSprite(4, 1)
  10.   if LIGHTCNT >= 4 then
  11.     set LIGHTCNT to 1
  12.   end if
  13.   if LIGHTCNT = 1 then
  14.     set the castNum of sprite 4 to cast "LIGHT1"
  15.   end if
  16.   if LIGHTCNT = 2 then
  17.     set the castNum of sprite 4 to cast "LIGHT2"
  18.   end if
  19.   if LIGHTCNT = 3 then
  20.     set the castNum of sprite 4 to cast "LIGHT3"
  21.   end if
  22.   updateStage()
  23.   go(the frame)
  24. end
  25.